home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000084_news@columbia.edu _Wed Sep 8 09:51:02 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA09512
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 8 Sep 1999 09:51:01 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA13399
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 8 Sep 1999 09:47:49 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Kermit for ASCII file transfers
  11. Date: 8 Sep 1999 13:47:49 GMT
  12. Organization: Columbia University
  13. Message-ID: <7r5pe5$d2k$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <7r5ogs$dtp$1@nnrp1.deja.com>,
  17. cozzmo  <john_cosimano@my-deja.com> wrote:
  18. : Background information:
  19. : I'm currently using C-Kermit 6.0.192, 6 Sep 96, for Linux as a console
  20. : for 128 Suns and CMD RAID controllers. I'm running on a RedHat Linux 5.2
  21. : box with a pair of Cyclades multi-port serial cards. I'm quite happy
  22. : with the set up. I need to flash the firmware on my RAID controllers
  23. : (CMD 5440), and this is the area of my question.
  24. : The controller provides a facility to do an ASCII upload to itself. The
  25. : controller then converts the code to some binary format and then burns
  26. : it to the eeprom. The controller manufacturer provides instructions on
  27. : how to use Windows Terminal (terminal.exe) to do this, and it works
  28. : fine. I'd like to figure out a way to use kermit to avoid carrying a
  29. : laptop to about 40 RAID boxen. Here are the guidelines the manual
  30. : suggests:
  31. : 1) use software flow control (easy: set flow-control xon/xoff)
  32. : 2) must use ascii file transfer mode
  33. : 3) must instruct terminal program to end each line of text with a
  34. :    carriage return/line feed.
  35. : Items 2 and 3 have me a little confused. First, I'm not sure if kermit
  36. : can do straight ascii uploads.
  37. :
  38. It can, the command is TRANSMIT.  See Chapter 15 of "Using C-Kermit".
  39.  
  40. : If this is the case, then I'll look
  41. : elsewhere. Second, for item 3, since I'm using a unix application (vice
  42. : windows), I'm not sure this applies to me.
  43. If it does, use SET TRANSMIT LINEFEED ON (as opposed to OFF, which is the
  44. default).  See the manual for complete instructions -- there is more to
  45. "ASCII protocol" than the three items you listed above.
  46.  
  47. - Frank